IsSubsetOf Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Determines if this bag is a subset of another ba11 items in this bag.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public bool IsSubsetOf(
	Bag<T> otherBag
)
Visual Basic (Declaration)
Public Function IsSubsetOf ( _
	otherBag As Bag(Of T) _
) As Boolean
Visual C++
public:
bool IsSubsetOf (
	Bag<T>^ otherBag
)

Parameters

otherBag
Bag<(Of <T>)>
Bag to compare to.

Return Value

True if this is a subset of otherBag.

Exceptions

ExceptionCondition
System..::InvalidOperationExceptionThis bag and otherBag don't use the same method for comparing items.

See Also